Skip to content

Instantly share code, notes, and snippets.

@mgreau
Last active August 14, 2019 21:42
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mgreau/779b4f60d3237c2ce435 to your computer and use it in GitHub Desktop.
Save mgreau/779b4f60d3237c2ce435 to your computer and use it in GitHub Desktop.
Gogs Docker Env (docker-compose)
git_server:
image: gogs/gogs
container_name: git_server
ports:
- "3000:3000"
- "10022:22"
volumes_from:
- git_serverdata
links:
- git_db:mysql
git_serverdata:
image: busybox
container_name: git_serverdata
command: /bin/sh
volumes:
- /data
#Doesn't work with the latest version due to problem for filesystem
# - ./data/gogs/conf/app.ini:/data/gogs/conf/app.ini
git_db:
image: mysql:5.6
volumes_from:
- git_dbdata
ports:
- "3306:3306"
environment:
- MYSQL_ROOT_PASSWORD=mgreaudocker
- MYSQL_DATABASE=gogs
- MYSQL_USER=mgreau
- MYSQL_PASSWORD=mgreaudocker
git_dbdata:
image: busybox
command: /bin/sh
volumes:
- /var/lib/mysql

Replace 192.168.99.100 by your DOCKER_HOST IP

# Configure the server
curl 'http://192.168.99.100:3000/install' \
  -H 'Origin: null' -H 'Accept-Encoding: gzip, deflate' \
  -H 'Accept-Language: fr-FR,fr;q=0.8,en-US;q=0.6,en;q=0.4' \
  -H 'Upgrade-Insecure-Requests: 1' \
  -H 'User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8' \
  -H 'Cache-Control: max-age=0' \
  -H 'Cookie: _ga=GA1.1.221947403.1432575239; lang=fr-FR; i_like_gogits=4e8b96e2a97347e0; _csrf=0NHae8OjPYKJ6xiplpZcsUhkwu86MTQ0MTExMTA2MDEyMzQ4ODk0Ng%3D%3D' \
  -H 'Connection: keep-alive' \
  --data 'db_type=MySQL&db_host=mysql%3A3306&db_user=mgreau&db_passwd=mgreaudocker&db_name=gogs&ssl_mode=disable&db_path=data%2Fgogs.db&app_name=Gogs%3A+Go+Git+Service&repo_root_path=%2Fhome%2Fgit%2Fgogs-repositories&run_user=git&domain=192.168.99.100&ssh_port=22&http_port=3000&app_url=http%3A%2F%2F192.168.99.100%3A3000%2F&smtp_host=&smtp_from=&smtp_email=&smtp_passwd=&admin_name=&admin_passwd=&admin_confirm_passwd=&admin_email=' --compressed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment