This commit is contained in:
arussac
2025-03-10 14:20:30 +01:00
2 changed files with 31 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.vscode/

30
docker-compose.yml Normal file
View File

@@ -0,0 +1,30 @@
services:
timelapse-frontend:
image: nginx:latest
container_name: timelapse-frontend
ports:
- "8093:80"
- "16443:443"
volumes:
- /home/timelapse/nginx:/usr/share/nginx/html
- nginx-config:/etc/nginx
environment:
- NGINX_VERSION=1.27.1
- NJS_VERSION=0.8.5
- NJS_RELEASE=1~bookworm
- PKG_RELEASE=1~bookworm
- DYNPKG_RELEASE=2~bookworm
restart: always
networks:
- bridge
- timelapse_network
volumes:
nginx-config:
driver: local
networks:
bridge:
driver: bridge
timelapse_network:
driver: bridge