39 lines
678 B
YAML
39 lines
678 B
YAML
---
|
|
|
|
# unciv
|
|
# <DESCRIPTION>
|
|
# Created by qyvlik
|
|
# ↳ https://github.com/qyvlik/docker-build-yairm210-unciv
|
|
|
|
services:
|
|
unciv:
|
|
image: qyvlik/yairm210-unciv:latest
|
|
container_name: unciv
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
# ports:
|
|
# - 3000:3000
|
|
|
|
environment:
|
|
PUID: 1000
|
|
PGID: 1000
|
|
CUSTOM_USER: ${USERNAME}
|
|
PASSWORD: ${PASSWORD}
|
|
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- unciv_data:/config
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|
|
|
|
volumes:
|
|
unciv_data:
|
|
driver: local
|
|
|
|
# Documentation available at https://github.com/qyvlik/docker-build-yairm210-unciv |