-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
20 lines (19 loc) · 1007 Bytes
/
docker-compose.yml
File metadata and controls
20 lines (19 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
services:
post_it: # Name of the service
container_name: post_it # Name of the container
image: ghcr.io/codeworks-fullstack/spring25_post_it:latest # Use the latest image from GHCR
ports:
- "4050:3000" # Map port 7045 on the host to port 8080 in the container
env_file:
- .env.post_it # Load environment variables from .env.app_name file
labels:
caddy.domain: post-it.cwa.dev # Caddy label for domain routing <app_name.gregslist.dev>
fu: # Name of the service
container_name: fu # Name of the container
image: ghcr.io/codeworks-fullstack/summer25_file_upload:latest # Use the latest image from GHCR
ports:
- "4051:3000" # Map port 7045 on the host to port 8080 in the container
env_file:
- .env.fu # Load environment variables from .env.app_name file
labels:
caddy.domain: fu.cwa.dev # Caddy label for domain routing <app_name.gregslist.dev>