add: non-configured nginx docker
This commit is contained in:
parent
4ff9c71895
commit
48d66950d8
2 changed files with 39 additions and 0 deletions
1
srcs/.dockerignore
Normal file
1
srcs/.dockerignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/.dockerignore
|
38
srcs/compose.yaml
Normal file
38
srcs/compose.yaml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
name: my-awesome-compose
|
||||||
|
|
||||||
|
services:
|
||||||
|
nginx:
|
||||||
|
# TODO no latest??
|
||||||
|
image: nginx:latest
|
||||||
|
ports:
|
||||||
|
- 8080:80
|
||||||
|
|
||||||
|
# image:
|
||||||
|
# build:
|
||||||
|
# ports:
|
||||||
|
# depends_on:
|
||||||
|
# - ...
|
||||||
|
# ...
|
||||||
|
# |
|
||||||
|
# ...:
|
||||||
|
# condition: service_healthy
|
||||||
|
# domainname: ...
|
||||||
|
# env_file: ...
|
||||||
|
# environment: ...
|
||||||
|
# expose:
|
||||||
|
# - ...
|
||||||
|
# ...
|
||||||
|
# external-links:
|
||||||
|
# - ...
|
||||||
|
# ...
|
||||||
|
# healthcheck: # Dockerfile
|
||||||
|
# hostname: ...
|
||||||
|
# labels:
|
||||||
|
# - ...
|
||||||
|
# ...
|
||||||
|
# label_file: ...
|
||||||
|
# restart: on-failure:3 / always
|
||||||
|
# secrets:
|
||||||
|
# - ...
|
||||||
|
# ...
|
||||||
|
# volumes: {out}:{in}:{rw|ro}
|
Loading…
Add table
Reference in a new issue