Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Puissance 4
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MAZAT Julian
Puissance 4
Commits
885cddb0
Commit
885cddb0
authored
Dec 8, 2023
by
MAZAT Julian
Browse files
Options
Downloads
Patches
Plain Diff
Nettoie le repo
parent
8ff56e74
No related branches found
No related tags found
No related merge requests found
Pipeline
#26428
passed
Dec 8, 2023
Stage: build
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.Docker.md
+0
-22
0 additions, 22 deletions
README.Docker.md
compose.yaml
+0
-15
0 additions, 15 deletions
compose.yaml
with
0 additions
and
37 deletions
README.Docker.md
deleted
100644 → 0
+
0
−
22
View file @
8ff56e74
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`
.
Your application will be available at http://localhost:9000.
### Deploying your application to the cloud
First, build your image, e.g.:
`docker build -t myapp .`
.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`
.
Then, push it to your registry, e.g.
`docker push myregistry.com/myapp`
.
Consult Docker's
[
getting started
](
https://docs.docker.com/go/get-started-sharing/
)
docs for more detail on building and pushing.
### References
*
[
Docker's Python guide
](
https://docs.docker.com/language/python/
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
compose.yaml
deleted
100644 → 0
+
0
−
15
View file @
8ff56e74
# Comments are provided throughout this file to help you get started.
# If you need more help, visit the Docker compose reference guide at
# https://docs.docker.com/go/compose-spec-reference/
# Here the instructions define your application as a service called "server".
# This service is built from the Dockerfile in the current directory.
# You can add other services your application may depend on here, such as a
# database or a cache. For examples, see the Awesome Compose repository:
# https://github.com/docker/awesome-compose
services
:
server
:
build
:
context
:
.
ports
:
-
9000:9000
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment