Skip to content

Instantly share code, notes, and snippets.

@vielmetti
Created August 5, 2022 14:27
Show Gist options
  • Save vielmetti/60707900995d464b381c384012822263 to your computer and use it in GitHub Desktop.
Save vielmetti/60707900995d464b381c384012822263 to your computer and use it in GitHub Desktop.
skeleton Acornfile for gitea
containers: {
gitea: {
image: "gitea/gitea:1.16.9"
env: {
"USER_UID": "1000"
"USER_GID": "1000"
}
ports: publish: "3000/http"
dirs: {
"/data": "volume://gitea-data"
}
}
}
volumes: {
"gitea-data": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment