We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55c2250 commit 8067a5fCopy full SHA for 8067a5f
docker-compose.yml
@@ -2,7 +2,12 @@ version: '3.8'
2
3
services:
4
web:
5
- build: .
+ build:
6
+ context: .
7
+ args:
8
+ USER_UID: ${USER_UID:-1000}
9
+ USER_GID: ${USER_GID:-1000}
10
+ image: ghcr.io/${GITHUB_USERNAME}/directadmin-email-forwarder:latest
11
ports:
12
- "5000:5000"
13
environment:
@@ -12,6 +17,8 @@ services:
17
- DA_PASSWORD=${DA_PASSWORD}
18
- DA_DOMAIN=${DA_DOMAIN}
14
19
- DATABASE_URL=sqlite:////app/data/users.db
20
+ - USER_UID=${USER_UID:-1000}
21
+ - USER_GID=${USER_GID:-1000}
15
22
volumes:
16
23
- ./data:/app/data
24
restart: unless-stopped
0 commit comments