-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·29 lines (25 loc) · 998 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
executable file
·29 lines (25 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
services:
everything:
build: .
container_name: everything
restart: unless-stopped
labels:
- "com.centurylinklabs.watchtower.enable=false"
volumes:
- ./data:/app/data
- ./public/game-images:/app/public/game-images
- ./public/film-images:/app/public/film-images
- "${EVERYTHING_SQLITE_LOCATION}:/app/data/Everything.db"
env_file:
- .env
environment:
# Override the custom sqlite location with the docker-specific location.
# The real location is still set via our .env file, as it is mapped in
# the volumes block above.
EVERYTHING_SQLITE_LOCATION: "/app/data/Everything.db"
TZ: ${TZ}
ports:
# Use the ports specified in .env to expose our server ports
# Feel free to customize this if you require a specific configuration.
- "${EVERYTHING_SERVER_PORT_INTERNAL}:${EVERYTHING_SERVER_PORT_INTERNAL}"
- "${EVERYTHING_SERVER_PORT_EXTERNAL}:${EVERYTHING_SERVER_PORT_EXTERNAL}"