rename directory docker to dev

This commit is contained in:
schlagmichdoch 2024-07-13 21:31:14 +02:00
parent 6ca039910a
commit fa24e77d3b
8 changed files with 6 additions and 7 deletions

View file

@ -16,18 +16,18 @@ services:
- "127.0.0.1:3000:3000" # Web UI. Change the port number before the last colon e.g. `127.0.0.1:9000:3000`
nginx:
build:
context: ./docker/
context: dev/
dockerfile: nginx-with-openssl.Dockerfile
image: "nginx-with-openssl"
volumes:
- ./public:/usr/share/nginx/html
- ./docker/certs:/etc/ssl/certs
- ./docker/openssl:/mnt/openssl
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
- ./dev/certs:/etc/ssl/certs
- ./dev/openssl:/mnt/openssl
- ./dev/nginx/default.conf:/etc/nginx/conf.d/default.conf
ports:
- "8080:80"
- "8443:443"
env_file: ./docker/fqdn.env
env_file: dev/fqdn.env
entrypoint: /mnt/openssl/create.sh
command: ["nginx", "-g", "daemon off;"]
restart: unless-stopped