Initial Commit

- Just the docker-compose file has been added.
master
shnee 8 years ago
commit 7799a2e167

@ -0,0 +1 @@
This is my Docker config/state for my gitea server.

@ -0,0 +1,23 @@
version: "3.5"
networks:
gitea:
name: gitea
services:
server:
image: gitea/gitea:latest
container_name: gitea
environment:
- USER_UID=1000
- USER_GID=1000
restart: always
networks:
- gitea
volumes:
- ./data:/data
ports:
- "3000:3000"
- "222:22"
Loading…
Cancel
Save