Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/malcp/armhf-gogs
Gogs docker container for armv7
https://github.com/malcp/armhf-gogs
Last synced: 4 days ago
JSON representation
Gogs docker container for armv7
- Host: GitHub
- URL: https://github.com/malcp/armhf-gogs
- Owner: malcp
- Created: 2015-10-15T20:34:52.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-16T16:02:48.000Z (about 9 years ago)
- Last Synced: 2023-03-12T01:35:43.261Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 14.7 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# GoGS Container
Go GIT Server.
Run it like the example below:
$ docker run -d\
-p 3000:3000\
-v /mnt/docker-volumes/gogs-repository:/repository\
-v /mnt/docker-volumes/gogs-data:/data\
-v /mnt/docker-volumes/gogs-static:/static\
--link gogs-postgres:postgres\
ghmap/armhf-gogsIt expects a postgres container to be linked, an example command line for that would be:
$ docker run --name gogs-postgres -d\
-e POSTGRES_USER=gogs\
-e POSTGRES_PASSWORD=\
-v /mnt/docker-volumes/gogs-pgdata:/var/lib/postgresql/data\
zsoltm/postgresql-armhf## Volumes
+ `/static` - static WEB assets and templates.
+ `/data` - various runtime data; logs, avatars and attachments
+ `/repository` - git repositories