mirror of
https://github.com/cupcakearmy/gitea-sync.git
synced 2024-12-22 16:16:27 +00:00
18 lines
286 B
YAML
18 lines
286 B
YAML
|
version: "3.8"
|
||
|
|
||
|
services:
|
||
|
job:
|
||
|
build: .
|
||
|
env_file: .env
|
||
|
|
||
|
server:
|
||
|
image: gitea/gitea:1
|
||
|
environment:
|
||
|
- USER_UID=1000
|
||
|
- USER_GID=1000
|
||
|
volumes:
|
||
|
- /etc/timezone:/etc/timezone:ro
|
||
|
- /etc/localtime:/etc/localtime:ro
|
||
|
ports:
|
||
|
- "3000:3000"
|