Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cgwire/kitsu-docker
Dockerfile used to build the trial image of Kitsu
https://github.com/cgwire/kitsu-docker
animation project-management review vfx
Last synced: 3 months ago
JSON representation
Dockerfile used to build the trial image of Kitsu
- Host: GitHub
- URL: https://github.com/cgwire/kitsu-docker
- Owner: cgwire
- License: apache-2.0
- Created: 2017-11-10T11:23:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-30T21:14:34.000Z (3 months ago)
- Last Synced: 2024-07-31T20:54:09.898Z (3 months ago)
- Topics: animation, project-management, review, vfx
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/cgwire/cgwire/
- Size: 159 KB
- Stars: 34
- Watchers: 7
- Forks: 24
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kitsu Docker
Docker container for [Kitsu](https://kitsu.cg-wire.com/).
If you like the project, please add a star to the [Kitsu repository](https://github.com/cgwire/kitsu).
It is not recommended to use this image in production. It is intended for Kitsu
testing.For this purpose, to simplify email testing, we include an email catch-all
application to intercept all emails sent by Kitsu. These can be viewed in an
included webmail.[![Build badge](https://app.travis-ci.com/cgwire/cgwire.svg?branch=master)](https://app.travis-ci.com/cgwire/cgwire)
### Usage
```bash
$ docker build -t cgwire/cgwire . # or sudo docker pull cgwire/cgwire
$ docker run --init -ti --rm -p 80:80 -p 1080:1080 --name cgwire cgwire/cgwire
```In order to enable data persistence, use a named volume for the database and thumbnails:
```bash
$ docker run --init -ti --rm -p 80:80 -p 1080:1080 --name cgwire -v zou-storage:/var/lib/postgresql -v zou-storage:/opt/zou/previews cgwire/cgwire
```To run the image as a daemon, add the `-d` flag:
```bash
$ docker run --init -d --rm -p 80:80 -p 1080:1080 --name cgwire cgwire/cgwire
```Kitsu credentials:
* login: [email protected]
* password: mysecretpasswordURL:
Kitsu: [http://127.0.0.1:80/](http://127.0.0.1:80/)
Internal webmail: [http://127.0.0.1:1080/](http://127.0.0.1:1080/)
### Update
After updating the image, you have to update the database schema. For that run:
```bash
$ docker exec -ti cgwire sh -c "/opt/zou/env/bin/zou upgrade-db"
```### Docker Compose
Thanks to our community, for Docker Compose, [an implementation by Mathieu Bouzard](https://gitlab.com/mathbou/docker-cgwire)
is available### About authors
This Dockerfile is written by CGWire, a company based in France. We help
animation and VFX studios to collaborate better through efficient tooling.More than 100 studios around the world use Kitsu for their projects.
Visit [cg-wire.com](https://cg-wire.com) for more information.
[![CGWire Logo](https://zou.cg-wire.com/cgwire.png)](https://cgwire.com)