diff --git a/srcs/.dockerignore b/srcs/.dockerignore new file mode 100644 index 0000000..f04fdfd --- /dev/null +++ b/srcs/.dockerignore @@ -0,0 +1 @@ +/.dockerignore diff --git a/srcs/compose.yaml b/srcs/compose.yaml new file mode 100644 index 0000000..6528b1c --- /dev/null +++ b/srcs/compose.yaml @@ -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}